home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
hity wydania
/
Ubuntu 9.10 PL
/
karmelkowy-koliberek-desktop-9.10-i386-PL.iso
/
casper
/
filesystem.squashfs
/
etc
/
kernel
/
header_postinst.d
/
dkms
next >
Wrap
Text File
|
2009-07-29
|
317b
|
14 lines
#!/bin/bash
# We're passed the version of the kernel being installed
inst_kern=$1
if [ -x /etc/init.d/dkms_autoinstaller ]; then
if which invoke-rc.d >/dev/null 2>&1 ; then
invoke-rc.d dkms_autoinstaller start $inst_kern
else
/etc/init.d/dkms_autoinstaller start $inst_kern
fi
fi
exit 0